home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / PROGEDIT / 0748.ZIP / CONFIG.ME < prev    next >
Text File  |  1987-01-18  |  2KB  |  44 lines

  1. hs 40      # of columns for horizontal scroll
  2. ta 8       tab stops are every n columns (n = 8 default)
  3. tb 32      tab_filler (this is a non-ascii value - for blank, put 32 here)
  4. in 0       insert mode on (if 0, overstrike mode is default)
  5. fs 1       cursor can move into free space beyond end of line
  6. sv 400     # of keystrokes to do save
  7. st 1       show the status line (this may be 0 for 1200 baud or below)
  8. ab 1       automatic backup of file (create a periodic .BK2 file)
  9. bk 1       Create a .BAK file when exiting
  10. ai 1       automatic indentation
  11. bl 0       sound the bell when you are prompted
  12. er 1       editor waits for a keypress after an error
  13. pu 0       prompt on <PUT> command
  14. fg 7       foreground color on PC
  15. bg 0       background color on PC
  16. hb 0       strip high bits off characters which are read in
  17. bt 0       Compress balnks to tabs on output
  18. ns 1       No waiting for horizontal retrace
  19. tx 80      allocation per block of text (don't mess with this!!!)
  20. vs 0       vertical scroll - # of line to subtract from window length
  21.  
  22.  
  23. This is the configuration file for the ME text editor.
  24.  
  25. There must not be any blank lines at the top of  the  file.  Likewise,
  26. there should be at least one blank line after the last parameter.
  27.  
  28. The  format of each config line is the two letter parameter code, fol-
  29. lowed by the default value, followed by an optional comment.
  30.  
  31. A boolean parameter can take either '1' or 'y' for 'yes', and  '0'  or
  32. 'n' for 'no'. All values are specified in decimal.
  33.  
  34. Be  extremely  careful  if  you  mess around with the tx parameter. It
  35. controls the size of the "chunk" of  memory  which  is  allocated  per
  36. line.  For  instance,  let's  say that tx is 80. Then, if a line has 0
  37. through 79  characters,  the  line  will  have  80  bytes  of  storage
  38. allocated  to  it. If the line has 81 through 159 characters, then the
  39. line will have 160 bytes allocated to it. The smaller you make the  tx
  40. value,  the less memory the editor will take for small lines. However,
  41. with  constant  reallocation  of  memory,  the  memory  pool   becomes
  42. fragmented,  and  there  may  be a greater chance of not being able to
  43. allocate memory for a large line.
  44.